home *** CD-ROM | disk | FTP | other *** search
- /*
- * This file should be the first include file in all c sources where
- * defines change from compiler to compiler
- */
-
-
- /* Only one of the following defines should be 1 */
- #define MIX_C 0
- #define MS_C 0
- #define TURBO_C 1
-
- #if MIX_C
- #include <graphics.h>
- #elif MS_C
- #include <graph.h>
- #elif TURBO_C
- #include <graphics.h>
- #endif
-
- #if MIX_C
- #define SCREEN_DEF_MODE DEFAULTMODE
- #elif MS_C
- #define SCREEN_DEF_MODE _DEFAULTMODE
- #elif TURBO_C
- #define SCREEN_DEF_MODE _DEFAULTMODE
- #endif
-